home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / snippets / incrementvalue.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  540 b   |  30 lines

  1. <!--- This shows the use of incrementValue --->
  2.  
  3. <HTML>
  4.  
  5. <HEAD>
  6. <TITLE>
  7. IncrementValue Example
  8. </TITLE>
  9. </HEAD>
  10.  
  11. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  12. <BODY  bgcolor="#FFFFD5">
  13.  
  14. <H3>IncrementValue Example</H3>
  15.  
  16. <P>Returns the integer part of a number Incremented by one.
  17.  
  18. <P>IncrementValue(0): <CFOUTPUT>#IncrementValue(0)#</CFOUTPUT>
  19.  
  20. <P>IncrementValue("1"): <CFOUTPUT>#IncrementValue("1")#</CFOUTPUT>
  21.  
  22. <P>IncrementValue(123.35): <CFOUTPUT>#IncrementValue(123.35)#</CFOUTPUT>
  23.  
  24.  
  25.  
  26. </BODY>
  27.  
  28. </HTML>       
  29.   
  30.